A PHP Error was encountered

Severity: Notice

Message: Constant APP_ID already defined

Filename: database/translate.php

Line Number: 15

Backtrace:

File: D:\database\translate.php
Line: 15
Function: define

File: D:\wwwroot\china-myt.com\application\controllers\about.php
Line: 15
Function: include_once

File: D:\wwwroot\china-myt.com\index.php
Line: 315
Function: require_once

A PHP Error was encountered

Severity: Notice

Message: Constant SEC_KEY already defined

Filename: database/translate.php

Line Number: 16

Backtrace:

File: D:\database\translate.php
Line: 16
Function: define

File: D:\wwwroot\china-myt.com\application\controllers\about.php
Line: 15
Function: include_once

File: D:\wwwroot\china-myt.com\index.php
Line: 315
Function: require_once

联系我们

  • 公司名称

    宁波美亚特精密传动部件有限公司

  • 地址

    浙江宁波市江北区庄桥上邵东区2号

  • 电话

    199-0660-8588 / 0574-87753999

  • E-mail

    shangcheng@china-myt.com

  • 网址

    www.china-myt.com

在线留言

  • *
    *
  • *
  • *
  • 提交
公司名称不能为空'); } //验证联系人 if (contacts) { if (reg.test(contacts)) { contactsFlag = false; $(".contacts").show().html('联系人不能为数字'); } else { $(".contacts").hide(); } } else { contactsFlag = false; $(".contacts").show().html('联系人不能为空'); } //验证联系电话 if (phoneContact) { var telephone = /^(\d3,4\d3,4|\d{3,4}-)?\d{7,8}$/; var mobile = /^1[3456789]\d{9}$/; if (!telephone.test(phoneContact)) { if (!mobile.test(phoneContact)) { phoneFlag = false; $(".phoneContact").show().html('联系电话格式不正确'); } else { $(".phoneContact").hide(); } } else { $(".phoneContact").hide(); } } else { phoneFlag = false; $(".phoneContact").show().html('联系电话不能为空'); } if (bzContact) { if (bzContact.length > 200) { bzFlag = false; $(".bzContact").show().html('长度不得大于200字'); } } if (companyFlag && contactsFlag && phoneFlag && bzFlag) { //提交发送短信 $.ajax({ type: "POST", url: "/user/sendMsg", data: { company: companyContact, contacts: contacts, phone: phoneContact, email: email, bz: bzContact }, success: function(data) { //console.log(data); }, error: function() { alert("网络连接失败") } }) alert('邮件发送成功,请耐心等待...'); $("#companyContact").val(''); $("#contacts").val(''); $("#phoneContact").val(''); $("#emailContact").val(''); $("#bzContact").val(''); } else { return false; } })